home *** CD-ROM | disk | FTP | other *** search
/ SGI IndiZone 2 / SGI IndiZone 2.iso / OutOfBox.idb / usr / people / tour / oob / scripts / memsize.z / memsize
Text File  |  1994-12-16  |  296b  |  16 lines

  1. #!/bin/csh -f
  2.  
  3. # Get number megabytes of main memory
  4. @ mbytes = `hinv | grep "Main memory" | awk '{print $4}'`
  5. #echo Memory = $mbytes Mb
  6.  
  7. # Test for minimum memory config
  8. # this is set from 16 to 0 for Jay
  9. @ minmemory = 0
  10. if ($mbytes < $minmemory) then
  11.     echo NotEnough
  12. else
  13.     echo MemoryOK
  14. endif
  15.  
  16.